home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n12 / batch2.exe / DIRCHECK.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-10-12  |  269 b   |  15 lines

  1. @ECHO OFF
  2. REM This is DIRCHECK.BAT
  3. IF %1!==! GOTO END
  4. IF EXIST %1*.* GOTO START
  5. ECHO No files beginning with %1
  6. GOTO END
  7. :START
  8. ECHO Want to see files beginning with %1 (Y/N)?
  9. KEY
  10. IF ERRORLEVEL 89 IF NOT ERRORLEVEL 90 GOTO Y
  11. GOTO END
  12. :Y
  13. DIR %1*.* /P
  14. :END
  15.